home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1994 August
/
August CD.bin
/
Shareware
/
Programming
/
SpriteWorld
/
Examples
/
Simple
/
Simple.h
< prev
next >
Wrap
Text File
|
1993-06-08
|
697b
|
39 lines
///--------------------------------------------------------------------------------------
// Simple.h
//
// By: Tony Myles
//
// Copyright © 1993 Tony Myles, All rights reserved worldwide.
///--------------------------------------------------------------------------------------
#ifndef __SIMPLE__
#define __SIMPLE__
#ifndef __WINDOWS__
#include <Windows.h>
#endif
enum
{
kSpriteCIconResID = 128,
kNumberOfSpriteFrames = 1,
kNumberOfSprites = 6,
kSpriteMoveTime = 10,
kHorizMoveDelta = 16,
kVertMoveDelta = 16,
kPixPatResID = 128
};
#ifdef __cplusplus
extern "C" {
#endif
void PerformSimpleAnimation(CWindowPtr srcWindowP);
#ifdef __cplusplus
};
#endif
#endif /* __APPLICATION__ */